home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / ov143b.zip / OVLOGO.C < prev    next >
C/C++ Source or Header  |  1993-01-04  |  879b  |  32 lines

  1. /*  007  24-May-87  ovlogo.c
  2.  
  3.         Copyright (c) 1987 by Blue Sky Software.  All rights reserved.
  4. */
  5.  
  6. #include "ov.h"
  7. #include "direct.h"
  8.  
  9. extern char version[], logo[][76];
  10.  
  11. ovlogo() {     /* display the initial signon screen w/logo */
  12.  
  13.    int i;
  14.  
  15.    for (i = 0; i < 8; i++)            /* display the logo lines */
  16.       disp_str_at(logo[i],2+i,3);
  17.  
  18.    disp_str_at(version,12,(SCREEN_COLS >> 1)-(strlen(version) >> 1));
  19.  
  20.    setvattrib(DIS_HIGH);
  21.    disp_str_at(" Press any key to continue ",14,26);
  22.    setvattrib(DIS_NORM);
  23.  
  24.    disp_str_at("      James Mathews       ",17,27);
  25.    disp_str_at("    Blue Sky Software     ",18,27);
  26.    disp_str_at("     172 Manor Drive      ",19,27);
  27.    disp_str_at("    Absecon, NJ 08201     ",20,27);
  28.  
  29.    disp_str_at(" Copyright (c) 1986,1987 Blue Sky Software.  All rights reserved. ",
  30.                 23,6);
  31. }
  32.